$(document).ready(function() {
						   
	function isValidEmailAddress(emailAddress) {
		var pattern = new RegExp(/^(("[\w-\s]+")|([\w-]+(?:\.[\w-]+)*)|("[\w-\s]+")([\w-]+(?:\.[\w-]+)*))(@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$)|(@\[?((25[0-5]\.|2[0-4][0-9]\.|1[0-9]{2}\.|[0-9]{1,2}\.))((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\.){2}(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\]?$)/i);
		return pattern.test(emailAddress);
	}
	
	$('#mover').click(function(){
		window.location = "index.php";
	});

	$('#newsmail').click(function(){
		$(this).val('');
		$(this).css({'color' : '#000', 'font-style' : 'normal'});
	});
	
	$('#home, #org, #shankar, #centers, #activities, #green, #vastu, #photos, #enquiry ').mouseover(function() { 
		var src = $(this).attr("src").match(/[^\.]+/) + "on.gif";
		$(this).attr("src", src); })
        .mouseout(function() {
         var src = $(this).attr("src").replace("on", "");
         $(this).attr("src", src);
    });
	
	$('#branches').change(function(){
		/*$.post('myutils.php',{ qAction:'branch'}, function(data){
			var response = data.replace(/^\s*|\s*$/g,'');
		});*/
		$('.branch').css('display', 'none');
		$('.branch').each(function(){
			if( $(this).attr('data_id') == $('#branches').val()){
				$(this).css('display','block');
				if($('#branches').val()>0){
					$('#brenquiry').css('display','block');
					$('#brid').html($(this).attr('data_name'));
					$('#branchid').val($(this).attr('data_id'));
					$('#branchemail').val($(this).attr('data_email'));
				}else{
					$('#brenquiry').css('display','none');
					$(this).css('min-height','400px');
				}
				return false;
			}
		});
	});

	
});
