// JavaScript Document

function adjustStyle(width) {
    width = parseInt(width);
    if (width < 1130) {
		
	   $("#sizestylesheet").attr("href", "CSS/sitewrights_narrow.css"); 
	   
	   $('#content ul li#school_website div.content_description').replaceWith("<div class='content_description'><h4>School <span>Website</span></h4><p>The UK's leading provider of school website design, print design, branding, marketing and multimedia for the education sector. We have designed creative sites for over 2000 schools.</p></div>");
	   
	   $('#content ul li#fluency_cms div.content_description').replaceWith("<div class='content_description'><h4>Fluency <span>CMS</span></h4><p>The education sectors leading platform for online content management. Administrating your website has never been easier with this feature rich, easy-to-use browser software.</p></div>");
		
		$('#content ul li#push div.content_description').replaceWith("<div class='content_description'><h4>Push<span>.</span></h4><p>Providing online marketing strategies for clients in the corporate sector. Our creative digital solutions are tailored to your specific needs to deliver a fantastic online presence.</p></div>");
		
		$('#content ul li#school_to_home div.content_description').replaceWith("<div class='content_description'><h4>School <span>to Home</span></h4><p>A feature rich communications platform for schools to send email and SMS out in a more efficient and cost effective way than any competing service in the education sector.</p></div>");
		
		$('#content ul li#feedesk div.content_description').replaceWith("<div class='content_description'><h4>Feedesk</h4><p>A lightweight desktop widget for pulling online news feeds into one convenient location. School Website customers can also have the interface design tailored to their branding.</p></div>");
		
    } else if (width >= 1130) {
		
        $("#sizestylesheet").attr("href", "CSS/sitewrights.css");
		
		$('#content ul li#school_website div.content_description').replaceWith("<div class='content_description'><h4>School <span>Website</span></h4><p>The UK's leading provider of school website design, print design, branding, marketing and multimedia for the education sector. We have created innovative and accessible designs for over 2000 schools.</p></div>");
		
		$('#content ul li#fluency_cms div.content_description').replaceWith("<div class='content_description'><h4>Fluency <span>CMS</span></h4><p>The education sectors leading platform for online content management. Administrating your website has never been easier with this feature rich, yet very easy-to-use browser software.</p></div>");
		
		$('#content ul li#push div.content_description').replaceWith("<div class='content_description'><h4>Push<span>.</span></h4><p>Providing online marketing strategies for clients in the corporate sector. Our creative digital media solutions are tailored to your specific requirements to get the most out of a new online presence.</p></div>");
		
		$('#content ul li#school_to_home div.content_description').replaceWith("<div class='content_description'><h4>School <span>to Home</span></h4><p>A feature rich communications platform for schools to send email and SMS out to parents in a more efficient and cost effective way than any competing service in the education sector.</p></div>");
		
		$('#content ul li#feedesk div.content_description').replaceWith("<div class='content_description'><h4>Feedesk</h4><p>A lightweight desktop widget for pulling your favourite online news feeds into one convenient location. School Website customers can also have the interface design tailored to match their branding.</p></div>");
		
    }
}

$(function() {
    adjustStyle($(this).width());
    $(window).resize(function() {
        adjustStyle($(this).width());
    });
});
