/*
	File: thumbs.js
	Created on: 0:36:27, 2009-2-27

	Autor: Alexander Marinov aka ssaki
*/

$( function(){

	$('.thumb-frame-image').mouseover (
		function(){
			$('a.thumb-frame-button').hide();
			$(this).find('a').show();
		});

	$('.thumb-frame-button').mouseout (
		function(){
			$(this).hide();
		});

	if ( $.browser.msie && ($.browser.version < '7.0') ) {
		jQuery.ifixpng('/tpl-0.1.2/img/pixel.gif');
		$(window).load ( function(){
			$('a.thumb-frame-button > img').ifixpng();
		});
	}
	
});