function css() {

	/* go on for IE in generall */
	if($.browser.msie){
		
		/* take care IE 6 only */
		if($.browser.version <= 6) {
			$('#breadcrumbs li:last-child, .categories-list .cat-item:last-child').addClass('last-child');
			
			$('#bar #cat-menu li').hover(function(){
				$(this).addClass('hover');
			}, function(){			
				$(this).removeClass('hover');
			});
			
		}
	}
	
	
	
	$('#suppliers span').flash(
		{
			src: 'loga.swf', 
			wmode: 'transparent',
			width: 185,
			height: 129
			
		},
		{ version: 6 },

		function(htmlOptions) {
			htmlOptions.flashvars.txt = this.innerHTML;
			this.innerHTML = '<div>'+this.innerHTML+'</div>';
			var $alt = $(this.firstChild);
			htmlOptions.height = $alt.height();
			htmlOptions.width = $alt.width();
			$alt.addClass('alt');
			$(this)
				.addClass('flash-replaced')
				.prepend($.fn.flash.transform(htmlOptions));						
        }
    );	
    
    $('#film-produkcja').flash({
		src: 'images/film/andpol-film.swf', 
		bgcolor: '#FFFFFF',
		width: 352,
		height: 330
	});
    
    /* strona kategorii */
    if($('#categories-list')){
		$('.cat-img img').each(function(){
			if($(this).attr('src') == 'pusty.jpg') $(this).parent().hide();
		}); // each
    } //if	
    
    $('.magazine-state').each(function(z){
    
		$(this).bind('click', function(){
			// clear other states
			$('.magazine-state').children('span').show();
			$('.magazine-state').find('img').remove();
			$('.magazine-state').children('.qty').css({display: 'none'});
				
			$(this).append('<img src="images/icon-load-1.gif" />');
			smi = setTimeout(ShowMagazineInfo, 1000);
			x = z;
			function ShowMagazineInfo(x){
				if(smi) clearTimeout(smi);
				$('.magazine-state').eq(z).children('span').hide();
				$('.magazine-state').eq(z).find('img').remove();
				$('.magazine-state').eq(z).children('.qty').css({display: 'block'});
			}
		});
    });
    
    /* dymki na stronie produktu */

		$('ul li p.multiple span').hover(function(){ 
			var $dymek = $(this).parent("p.multiple").next('.call-info').children('.attr-info');
			$dymek.css({ display: 'block'});
		}, 
		function(){
			var $dymek = $(this).parent("p.multiple").next('.call-info').children('.attr-info');
			$dymek.css({ display: 'none'});
			return false;
		});
		
	$('form.form-2 dl dt').children('img.call-img').hover(function(){ 
			var $dymek2 = $(this).next('.call-info').children('.attr-info');
			$dymek2.css({ display: 'block'});
		}, 
		function(){
			var $dymek2 = $(this).next('.call-info').children('.attr-info');
			$dymek2.css({ display: 'none'});
			return false;
		});

}

function searchForm_submit() {
	var go = true;
	if (getElement('search').value.length < 3 && getElement('search-footer').value.length < 3) {
		alert ("Proszę wpisać co najmniej 3 znaki!");
		getElement('search').focus();
		go = false;
	}
	return go;
}

function trim(s){return s.replace(/^\s*|\s*$/g,'');}

$(document).ready(css);
