/*
	========================
	User Interface Functions
	=================================================================
	
	Description:	Userinterface Scripts für Lucia Cosmetic
	
	-----------------------------------------------------------------
	
	Dependencies:	Benötigt jQuery
	-----------------------------------------------------------------
	
	Author:			Sascha Merkofer, end if Design & Code

	Datum:			26. 11. 2009

	Version:		0.1
	
	-----------------------------------------------------------------
	
*/


/*	-----------------------------------------------------------------
	Window ready
	----------------------------------------------------------------- */

$(window).load(function () {

/*	-----------------------------------------------------------------
	Print document if URL contains #Print
	----------------------------------------------------------------- */
	
	var dsprint_match = document.URL.search( /\&Print/ );
    if ( dsprint_match >= 0 ) {
        window.print();
    }
    
/*	-----------------------------------------------------------------
	Add some nice grafics, (if not IE < 8 )
	----------------------------------------------------------------- */
    
    $('#Footer').append('<div id="MakeUp"></div>');    
    
});


/*	-----------------------------------------------------------------
	Document Ready
	----------------------------------------------------------------- */

$(document).ready(function () {

    
    
}); // END $(document).ready()


