/*----------------------------------------------------------------
[t_n_c_js.js]

Project					:		Wildcraft
Version					:		1.1
Last change				:		10/21/09 []
Author					:		Ranjoy Sen
Primary use				:		terms and condition page js
Dependency 				:		jquery-1.3.2.min_.js,
								jquery.corner.js,
								jquery.url.js
------------------------------------------------------------------*/


/*img png transperency*/
$(document).ready
(
	function() 
	{
		$('.wc_t_n_c_placeholder .wc_t_n_c_banner').corner("top cc:#0a0b0c");
		$('.wc_t_n_c_placeholder .wc_t_n_c_container').corner("bottom cc:#161618");
		var currentURL = jQuery.url.attr("anchor");
		var currentURL_trim=currentURL.charAt(0)
		//alert(currentURL_trim);
		if( currentURL_trim=="D"){
			$.scrollTo( $(".Disclaimer") , 800 );	
		}
		else if( currentURL_trim=="G"){
			$.scrollTo( $(".Gift_Vouchers") , 800 );	
		}
		else if( currentURL_trim=="O"){
			$.scrollTo( $(".Online_Concession_Coupons") , 800 );	
		}
		else if( currentURL_trim=="P"){
			$.scrollTo( $(".Privacy_Policy") , 800 );	
		}
		else if( currentURL_trim=="T"){
			$.scrollTo( $(".Terms_and_Conditions") , 800 );	
		}
		
	}
);
/*img png transperency*/

