$(document).ready(function(){
	$('.bg_button').hover(function() {
			$(this).removeClass('bg_button').addClass('bg_button1');
		}, function() {
			$(this).removeClass('bg_button1').addClass('bg_button');
	});
});

$(window).load(function() {
	$(".thumb-link").each(function() {
		var src = $(this).find('img').attr('src');
		var height = $(this).find('img').height();
		var html = '<div style="width: 180px;" class="caption"><a href="' + $(this).attr('href') + '"><img src="'
					+ src + '" class="thumb-img" /></a><p style="top: '
					+ (height - 23) + 'px">' + $(this).attr('rel') + '</p> </div>';
		$(this).after(html).remove();

		$('.prod-thumb').hover(
			function() { $(this).find('p').css('display', 'block');	},
			function() { $(this).find('p').css('display', 'none'); }
		)
	});
});

function validate_email(email)
{
	var emailRegEx = /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i;
	if (email.search(emailRegEx) == -1)
		return false;
	else
		return true;
}
