$(document).ready(function(){ 
	$('.prew_link').mouseover(function(){
		var img = $(this).attr('href');
		var parent = $(this).attr('rel');
		$('#large_'+parent).css('backgroundImage','url(\''+img+'\')');
		//console.log(img);
		return false;
	});
	
	$('.prew_link').mouseout(function(){
		var parent = $(this).attr('rel');
		var img = $('.firstPic_'+parent).html();
		$('#large_'+parent).css('backgroundImage','url(\''+img+'\')');
		//console.log(img); 
		return false;
	});

}); 


function my_choose( id, add ) {
	
    $.ajax({
	    url:'/index.php',
        type: 'GET',
        data: 'my='+id+'&act='+add,
        cache: false,
        success: function(table){
        	location.reload();
        },
        error: function(){
          //  alert('ERROR');
        }
    });
	
}

function sbc() {
	
	var id = $('#cntnt01fieldkey_coast').attr('value');
	
    $.ajax({
	    url:'/index.php',
        type: 'GET',
        data: 'type=coast&id='+id,
        cache: false,
        success: function(table){
 			$('#ac_city').html(table);
        },
        error: function(){
          //  alert('ERROR');
        }
    });
	
}

