$(document).ready(function(){

	var cookie_name	= $.cookie('__utmz');
	
	// check if it is organic	
	
	if ( !cookie_name.match(/utmccn=\(organic\)/i) ){
		return ;
	}else{
		
		// check what kind of organic		

		var cookie_val_g	= cookie_name.match(/utmcsr=google/i);
		var cookie_val_y	= cookie_name.match(/utmcsr=yahoo/i);
		var cookie_val_b	= cookie_name.match(/utmcsr=bing/i);
		
		var profile = 'dcnt';
		
		if ( cookie_val_g ){
			profile = 'gcnt';
		} else if (cookie_val_y){
			profile = 'ycnt';
		} else if (cookie_val_b){
			profile = 'bcnt';
		}
		
		$("a[href^=http://banner.casinolasvegas.com/cgi-bin/SetupCasino.exe]").attr('href', function() {
				return this.href + '?member=sourcecnt&profile='+profile;
		});
	}
});
