﻿
 Hyphenator.config({
		    //displaytogglebox : true,
		    minwordlength : 2,
		    defaultlanguage : "tr"
    		
	    });
	    Hyphenator.run();

 $(document).ready(function () {
    	    var backgroundImg = $(".bottomlane-news-item").children("a").children("img").attr("src");	
	        var Title = $(".bottomlane-news-item").children(".hTitle").html();
	        var Spot = $(".bottomlane-news-item").children(".hSpot").html();
	        var link = $(".bottomlane-news-item").children("a:first").attr("href");
	
	        $("#bigHref").attr("href", link);
	        $("#manset-headlines").css("background-image", 'url(' + backgroundImg + ')' );
	        $("#headlineTitle").html(Title);
	        $("#headlineSpot").html(Spot);
        });
