/*=================================================================================================================================
Title:				Javascript - lewro's blog
Type:					Script styles 
File:					script_styles.js
Author:				
E-mail:				roman.leinwather@gmail.com
Website:			http://www.lewro.com
==================================================================================================================================*/

(function () {
	var head = document.getElementsByTagName("head")[0];
	if (head) {
		var scriptStyles = document.createElement("link");
		scriptStyles.rel = "stylesheet";
		scriptStyles.type = "text/css";
		scriptStyles.href = "http://www.lewro.com/wp-content/themes/magic/css/script_styles.css"; /* Change this for production enviroment */
		head.appendChild(scriptStyles);
	}
}());
