
$( document ).ready( function(){
		
	$('.blink')
		.focus( function(){
			if ( $( this ).attr('value') == $( this ).attr('title') ) {
				 $( this ).attr({ 'value': '' });
				 $( this ).addClass('black');
			}
		})
		.blur( function(){
			if ( $( this ).attr('value') == '' ) {
				$( this ).attr({ 'value': $( this ).attr('title') });
				$( this ).removeClass('black');
			}
		});
	
	$('.recbox select').change( function(){
			$( this ).parent().parent().find("img").attr('src', 'http://www.bistrostudios.com/resources/phpThumb/phpThumb.php?src=../../mysterioso/images/upload/product/'+ $( this ).attr('value') +'.jpg&w=225&h=225&zc=1&q=100');
		});
	
	$('#toggleform').click( function(){
		
		if($('#addretailer').is(":hidden")){
			$(this).html("close");
			$('#addretailer').slideDown("slow");							 
		}
		else {
			$(this).html("Add a new retailer &gt;&gt;");
			$('#addretailer').slideUp("slow");	
		}
	});
	
})

function showhide (disp, element){
	document.getElementById(element).style.display=disp;	
}

function selectchange (tbl, this_val){
	if (tbl == "gender"){
		if ($(this_val).attr('value') == 2){
			$('body').addClass("allwomens");
		}
		else{
			$('body').removeClass("allwomens");
		}
	}
}




