/**
 * 
 */

/*
$(function(){
		var page_count;
		increase_page_count();
		if ( page_count == 2) {
			// show popup after 3 seconds
			setTimeout( show_popup, 3000 );
		}
		
		function increase_page_count() {
			page_count = $.cookie('page_count') | 0;
			page_count++;
			$.cookie( 'page_count', page_count );
		}
		
		function reset_page_count() {
			page_count = 0;
			$.cookie( 'page_count', page_count );
		}
		
		function show_popup() {
			var show = confirm("Thanks for visiting. Please take our 3-minute survey and help us improve our website!");
			if (show) {
				window.location = 'http://www.surveymonkey.com/s/QWCBCSW';
			}
		}	
	
	
});
*/
