$(document).ready(function(){
						   
var ary = [];
$("#homeads a > img").each(function(idx,row){
	ary.push({url:row.src,description: row.alt,link:$(row).parent().attr('href')});
});
$("#homeads > img").each(function(idx,row){
	ary.push({url:row.src,description: row.alt,link:'#'});
});
$("#homeads").html('');
$("#homeads").showcase({  
    images: ary,  
    width: "530px",  
    height: "360px",  
    animation: { type: "fade", interval: 7500, stopOnHover: true },  
    navigator: { item: { width: "1px", height: "1px" } },  
    titleBar: { css: { backgroundColor: "#232323", fontColor: "#ffffff" } }  
});  
});
