/* ------------------------------------------------------------------------
	s3Slider
	
	Developped By: Boban Karišik -> http://www.serie3.info/
        CSS Help: Mészáros Róbert -> http://www.perspectived.com/
	Version: 1.0
	
	Copyright: Feel free to redistribute the script/modify it, as
			   long as you leave my infos at the top.
------------------------------------------------------------------------- */


(function($){  

    $.fn.s3Slider = function(vars) {       
        
        var element     = this;
        var timeOut     = (vars.timeOut != undefined) ? vars.timeOut : 4000;
        var current     = null;
		var products = element.find('.product');
            
        items.each(function(i) {   
            $(items[i]).mouseover(function() {
               mOver = true;
            });          
            $(items[i]).mouseout(function() {
                mOver   = false;
                fadeElement(true);
            });          
        });
        
        var fadeElement = function(isMouseOut) {
            
        }
        
        var makeSlider = function() {
            
        }
        
        makeSlider();

    };  

})(jQuery);  