var $v = jQuery.noConflict();

$v(document).ready(function(){

	$v(".togglethis").hide();
	
	$v(".toggle").click(function(){
		
		if( $v(".togglethis").css("display") == "none"){
		
			$v(".togglethis").show();
			
		} else {
		
			$v(".togglethis").hide();
			
		}

	});
	
});
