$(function(){
	$('select').selectbox();
	tooltip();
	$('.gallery .entry').hover(function(){
		$(this).find('.entry-hover').show();
	}, function(){
		$(this).find('.entry-hover').hide();
	});
	
	$('.product').hover(function(){
		$(this).addClass('product-hover');
	}, function(){
		$(this).removeClass('product-hover');
	});
	
	if($.browser.msie && $.browser.version=="6.0")
	{
		DD_belatedPNG.fix('#navigation');
		DD_belatedPNG.fix('.container-c');
		DD_belatedPNG.fix('.entry .img img');
	}
	
	$('.blink').focus(function () {
		if ($(this).val() == $(this).attr('title')) {
			$(this).val('');
		}
	});
	
	$('.blink').blur(function () {
		if ($(this).val() == '') {
			$(this).val($(this).attr('title'));
		}
	});
	
	
})
